W1. Linear System Consistency
1. Theory
1.1 Introduction: What Are We Studying?
In this module, we study how to systematically solve systems of linear equations and understand when solutions exist, are unique, or come in infinite families. You’ve likely solved small systems before (like
Main questions we’ll answer:
- Does a solution exist? (Is the system consistent?)
- If yes, is it unique? (Or are there infinitely many solutions?)
- How do we find all solutions efficiently? (Using systematic elimination methods)
The key tool: We’ll use row operations to transform systems into simpler forms (REF and RREF) that make solutions easy to read off. The rank of the coefficient matrix will tell us everything about the solution structure.
1.2 Linear Systems of Equations
A linear system of equations is a collection of
This can be written compactly in matrix form as
is the coefficient matrix containing only the coefficients of the variables is the column vector of unknowns is the column vector of constants on the right-hand side
The augmented matrix
The augmented matrix is the primary object we manipulate when solving linear systems via elimination.
1.3 Consistency and Inconsistency
A system
To understand this better, think about what it means to solve
This asks: “Can we express
A system is inconsistent if it has no solution. Geometrically, the hyperplanes do not all share a common intersection point. For example, parallel lines in 2D never intersect:
These represent two parallel lines with no common point, so the system is inconsistent.
1.4 Rank of a Matrix
The rank of a matrix
What does “linearly independent” mean? A set of vectors is linearly independent if no vector in the set can be written as a combination of the others. For example, the rows
How to compute rank: Reduce
Why does rank matter? The rank tells us:
- How many “truly different” equations we have (some equations might be redundant)
- The dimension of the solution space
- Whether the system is consistent (by comparing
with )
Key properties of rank:
(can’t have more independent rows than total rows, or more independent columns than total columns) (rank measures the dimension of both the column and row spaces)- Row operations do not change the rank (they preserve the essential structure of the system)
1.5 The Consistency Theorem (Rouché–Capelli Theorem)
This is the central theorem for determining whether a linear system has solutions.
Theorem 1 (Consistency of Linear Systems). A system
Why does this work? If
Proof sketch. Write
Alternative viewpoint (via row operations). If
1.6 Classification of Solutions
Theorem 2 (Solution Type Determination). For the linear system
- No solution (inconsistent):
- Unique solution:
- Infinitely many solutions:
Why does this work? The proof relies on the Rank-Nullity Theorem:
This fundamental theorem says: the number of pivot columns plus the number of free variables equals the total number of variables. Rearranging:
Now we can understand the three cases:
- Case 1: If
, adding increased the rank, meaning is not in the column space. No solution exists. - Case 2: If
, then , so the null space contains only . There are no free variables, no “wiggle room” — the solution (if it exists) is unique. - Case 3: If
, then . There are free variables, giving infinitely many solutions in the form where ranges over the -dimensional null space.
1.6.1 Special Cases
Homogeneous systems (
- Only the trivial solution if
- Infinitely many nontrivial solutions if
Square systems (
- Unique solution for every
iff (equivalently, ) - If
, the system is either inconsistent or has infinitely many solutions
1.7 Geometric Interpretation
Each linear equation
What is dimension? Intuitively, the dimension of a space is the number of independent directions you can move in it. A line has dimension 1 (one direction: forward/backward). A plane has dimension 2 (two independent directions: e.g., north/south and east/west). Our 3D world has dimension 3. A hyperplane in
The solution set of a linear system is the intersection of the corresponding hyperplanes:
- Unique solution: All hyperplanes meet at exactly one point
- Infinitely many solutions: Hyperplanes intersect along a line, plane, or higher-dimensional flat
- No solution: The hyperplanes have no common intersection (e.g., parallel planes)
1.8 Row Echelon Form (REF)
A matrix is in Row Echelon Form (also called stair-step form) if:
- All zero rows are at the bottom
- Each leading entry (pivot) is in a column to the right of the pivot in the row above
- All entries below a pivot are zero
Example:
The pivots are
Pivot columns vs. free columns: Columns containing pivots correspond to basic variables (also called pivot variables) — these are the variables we solve for in terms of the others. Columns without pivots correspond to free variables — these can take any value and act as parameters in the solution. In the example above, if this were the augmented matrix of a system with variables
1.9 Reduced Row Echelon Form (RREF)
A matrix is in Reduced Row Echelon Form (also called canonical form) if:
- It is in REF
- Each pivot is exactly
- Each pivot is the only nonzero entry in its column (all entries above and below are zero)
Example:
The key difference from REF: in RREF, you can read off variable values (or express them in terms of free variables) directly, without back substitution.
1.10 Solving Linear Systems: Step-by-Step Methodology
The standard procedure for solving
- Write the augmented matrix
- Use Gaussian elimination (row operations) to transform it to REF or RREF
- Identify pivot columns (basic variables) and free columns (free variables)
- Check consistency: if a row
with appears, the system is inconsistent - If consistent, find a particular solution
by setting all free variables to - Find the homogeneous solution
by solving - Write the complete solution:
The three elementary row operations are:
- Swap two rows:
(changing the order of equations doesn’t change the solution) - Multiply a row by a nonzero scalar:
(multiplying both sides of an equation by a nonzero number gives an equivalent equation) - Add a multiple of one row to another:
(if satisfies both equations, it satisfies their sum)
Why do row operations preserve solutions? Each row operation corresponds to a valid algebraic manipulation that doesn’t change the solution set. For example, if you have equations
1.11 Complete Solution Structure
For a consistent system
where:
is any particular solution to (found by setting free variables to ) is the general solution to the homogeneous system , expressed as a linear combination of basis vectors of the null space
Understanding this structure intuitively: Think of
What is the null space? The null space (or kernel) of
The null space is a vector subspace of
1.12 Underdetermined and Overdetermined Systems
An underdetermined system has more variables than equations (
An overdetermined system has more equations than variables (
1.13 Systems with Parameters
When a system involves a parameter (like
- A pivot to vanish (changing the rank)
- An inconsistency row
to appear
Different parameter values may lead to different solution types (unique, infinite, or none).
2. Definitions
- Linear system of equations: A collection of
linear equations in unknowns of the form , where each equation is a linear combination of the variables equal to a constant. - Coefficient matrix: The
matrix containing only the coefficients of the variables in a linear system. - Augmented matrix: The matrix
formed by appending the constants vector as an additional column to the coefficient matrix . - Consistent system: A linear system that has at least one solution; equivalently,
. - Inconsistent system: A linear system that has no solution; equivalently,
. - Rank: The maximum number of linearly independent rows (or columns) of a matrix; equals the number of pivots in row echelon form.
- Pivot: The first nonzero entry in a row of a matrix in row echelon form; also called the leading entry.
- Pivot column: A column of the coefficient matrix that contains a pivot; corresponds to a basic (determined) variable.
- Free variable: A variable whose corresponding column is not a pivot column; it can take any real value as a parameter.
- Row Echelon Form (REF): A matrix form where all zero rows are at the bottom, each pivot is to the right of the pivot above, and all entries below each pivot are zero.
- Reduced Row Echelon Form (RREF): A matrix in REF where each pivot is
and is the only nonzero entry in its column. - Particular solution (
): Any single solution to , typically found by setting all free variables to zero. - Homogeneous solution (
): The general solution to ; it forms the null space of . - Null space (kernel): The set of all vectors
such that ; a vector subspace of with dimension . - Column space: The set of all possible linear combinations of the columns of
; the system is consistent iff is in the column space. - Hyperplane: The solution set of a single linear equation in
; a flat subspace of dimension . - Underdetermined system: A system with more variables than equations (
); if consistent, always has infinitely many solutions. - Back substitution: The process of solving for variables starting from the last equation in a triangular (REF) system and working upward.
3. Formulas
- Matrix form of a linear system:
, where , , - Consistency condition (Rouché–Capelli): The system
is consistent iff - Complete solution structure:
, where is a particular solution and is the general homogeneous solution - Rank-Nullity Theorem:
, i.e., the number of free variables equals minus the number of pivots - Solution classification:
- No solution:
- Unique solution:
- Infinitely many solutions:
- No solution:
- Null space dimension:
, where - Rank bound:
- Square system unique solution condition:
has a unique solution for every iff
4. Practice
4.1. Solvability of a System of Three Lines (Lab 1, Task 1)
Consider the following system of equations:
Part (a): Sketch these three lines and decide if the system is solvable. Part (b): What happens when all the elements on the right-hand side are zero? Part (c): Is there any choice of numbers on the right-hand side that allows the three lines to intersect at the same point?
Click to see the solution
Key Concept: A system of three linear equations in two variables represents three lines in the plane. They can intersect at a point (unique solution), have no common intersection (inconsistent), or all pass through infinitely many points (infinitely many solutions).
(a) Sketch and solvability: The three lines can be plotted on a coordinate plane. The first line
(b) When right-hand side is zero: 1. If we set all right-hand side values to zero:
(c) Condition for three lines to intersect at one point: For the three lines to intersect at a single common point, we need the system to be consistent. The right-hand side values must be compatible with the coefficient matrix. For example, if we modify the third equation to
Answer: (a) The system is inconsistent (no common point); (b) All lines pass through the origin
4.2. Identifying Inconsistency via Rank (Lab 1, Task 2)
Consider the following system of equations:
Part (a): Explain why this system is singular by providing a combination of three equations that adds up to
Click to see the solution
Key Concept: When row operations reveal a contradiction like
(a) Finding the inconsistency: 1. Start with the augmented matrix:
(b) Correct right-hand side: If we change the third equation’s right-hand side from
(c) Finding a solution when right-hand side is corrected: With the corrected system, we have:
, so , so , giving
Setting
Answer: (a) Row operations reveal
4.3. Linear Combinations and Back Substitution (Lab 1, Task 3)
What combination of
Click to see the solution
Key Concept: Finding a linear combination of column vectors is equivalent to solving a linear system where the column vectors form the coefficient matrix.
- Set up the system: We seek
such that: - Write as a linear system:
- Express in matrix form:
- Back substitution:
- From equation 4:
- From equation 3:
- From equation 2:
- From equation 1:
- From equation 4:
Answer:
4.4. Gaussian Elimination to Upper Triangular Form (Lab 1, Task 4)
Reduce the following system to an upper triangular form by row operations:
Circle the pivots. Solve it for
Click to see the solution
Key Concept: Gaussian elimination transforms the system into upper triangular form (REF) by making entries below pivots zero, enabling efficient back substitution.
Write augmented matrix:
Perform row operation
:First pivot:
(in position )Perform row operation
:Second pivot:
(in position ) Third pivot: (in position )Back substitution:
- From equation 3:
- From equation 2:
- From equation 1:
- From equation 3:
Answer:
4.5. Parameter Analysis: Row Exchange and Missing Pivot (Lab 1, Task 5)
For the system:
Part (a): Which number
Click to see the solution
Key Concept: Parameters that make a pivot vanish cause the matrix to become singular, potentially requiring row exchanges or indicating infinitely many solutions in the homogeneous case.
(a) Row exchange case when
Answer for (a):
(b) Missing pivot case when
The third column has no pivot, so
Answer for (b):
(c) Nonzero solution when
Answer:
4.6. Dependent Rows and Solution Structure (Lab 1, Task 6)
Construct a 3 by 3 example that has 9 different coefficients on the left-hand side, but rows 2 and 3 become zero in the elimination.
Part (a): How many solutions to your system with
Click to see the solution
Key Concept: When rows become linearly dependent (proportional), the rank of the augmented matrix determines consistency and the number of solutions.
(a) Construction and analysis for
Consider a system with proportional rows:
The second and third rows are proportional to the first row.
Augmented matrix for
:After row operations
and :Both rows 2 and 3 represent contradictions (
and ), so the system is inconsistent.
Answer for (a): No solutions (the system is inconsistent)
(b) For
- Augmented matrix:
- After row operations:
- Only one independent equation remains:
. There are free variables. - From the equation:
(assuming ) - General solution:
for any
Answer for (b): Infinitely many solutions (the system has a 2-dimensional solution space)
4.7. Solving Two 3×3 Systems (Lab 1, Task 7)
Use elimination to solve these two systems:
System 1:
System 2:
Click to see the solution
Key Concept: These two systems share the same coefficient matrix but differ only in the right-hand side. Both can be solved using the same sequence of row operations.
System 1 Solution:
- Write augmented matrix:
- Row operations
and : - Row operation
: - Back substitution:
Answer for System 1:
System 2 Solution:
- Write augmented matrix:
- Apply the same row operations as System 1 (the coefficient matrix is identical):
- Back substitution:
Answer for System 2:
4.8. System with Parameter: Solution Type Classification (Assignment 1, Task 1)
Determine all values of
Click to see the solution
Key Concept: For systems with parameters, the number of solutions depends on how the parameter affects the rank of the coefficient matrix and augmented matrix.
Write the augmented matrix:
Observe the first two equations: Row 2 is exactly
Row 1, so after :Analyze Row 3: Perform
:Simplifying Row 3:
Case analysis:
Case 1:
Only one independent equation; . Infinitely many solutions (with 2 free variables).Case 2:
Row 3 becomes:This simplifies to
, or .Since
, we have , which gives one more independent equation. , and . Infinitely many solutions (with 1 free variable) since the second row is always zero and the right-hand sides are consistent.
Starting system:
Notice: Row 2 =
After
:- Simplifies to:
, i.e.,
If
If
The system always has solutions because the right-hand sides are compatible.
Answer:
- Unique solution: Never (the first two equations are dependent)
- No solution: Never (the system is always consistent)
- Infinitely many solutions: For all values of
(the system always has rank 2 and infinitely many solutions with 1 free variable)
4.9. Underdetermined System: Multiple Free Variables (Assignment 1, Task 2)
Solve the system:
Click to see the solution
Key Concept: This is an underdetermined system (3 equations, 5 variables). The rows are all proportional, leading to only one independent constraint and four free variables.
Write the augmented matrix:
Observe proportionality:
- Row 2 =
Row 1 - Row 3 =
Row 1
So all three rows represent the same constraint.
- Row 2 =
After row reduction:
Only one independent equation remains:
Identify pivot and free variables:
- Pivot column: 1 (variable
) - Free columns: 2, 3, 4, 5 (variables
) - Number of free variables:
- Pivot column: 1 (variable
Express general solution: Let
, , , (free parameters).From the constraint:
Answer: The general solution is:
Or equivalently:
Particular solution (setting all free variables to 0):
4.10. 4×4 Overdetermined System (Assignment 1, Task 3)
Solve the system:
Click to see the solution
Key Concept: This is an overdetermined system (4 equations, 4 variables). Row reduction will show whether it is consistent or inconsistent.
- Write the augmented matrix:
- Row operations: Subtract Row 1 from Rows 2, 3, and 4:
- Continue elimination:
and : - Final step:
: - Back substitution:
- From Row 4:
- From Row 3:
- From Row 2:
- From Row 1:
- From Row 4:
Answer:
4.11. Rank-1 Matrix System (Assignment 1, Task 4)
Find the complete solution to:
(Note: The matrix has rank 1)
Click to see the solution
Key Concept: When a matrix has rank 1, all rows are multiples of one row. The entire system reduces to a single constraint equation with multiple free variables.
Observe the pattern:
- Row 2 =
Row 1 - Row 3 =
Row 1 - Row 4 =
Row 1
Check the right-hand side:
. The system is consistent!- Row 2 =
Augmented matrix:
After row reduction:
Single constraint:
Rank-Nullity Theorem:
, soThe null space has dimension 3, so the complete solution has 3 free parameters.
Particular solution: Set
Particular solution:
Homogeneous solution (Null space): Solve
Let
. Basis vector: Let . Basis vector: Let . Basis vector:
Answer: Complete solution:
4.12. Underdetermined System with 3 Equations and 4 Variables (Assignment 1, Task 5)
Solve the underdetermined system:
where
Click to see the solution
Key Concept: An underdetermined system has more variables than (independent) equations. The solutions form a higher-dimensional space parametrized by free variables.
Write the augmented matrix:
Row operations:
and :Rearrange (move Row 3 up):
RREF-like form (divide Row 2 by -1):
Identify pivot and free variables:
- Pivot columns: 1, 2 (variables
) - Free columns: 3, 4 (variables
) - Rank:
; Free variables:
- Pivot columns: 1, 2 (variables
Back substitution: Let
and (free parameters).From Row 2:
From Row 1:
Answer: General solution:
Or in vector form:
4.13. Parametric System: Solution Type Depends on Parameters (Assignment 1, Task 6)
For what values of
Click to see the solution
Key Concept: For parametric systems, analyze the coefficient matrix and augmented matrix separately. The relationship between their ranks determines consistency and solution type.
Write the augmented matrix:
Row operations:
and :Continue:
:Simplify Row 3 right-hand side:
Final reduced form:
Case analysis:
Case 1: No solution This occurs when
Since the coefficient matrix has rank at most 2 (third row is all zeros in the
part), the augmented matrix will have rank 3 (meaning inconsistent) only if Row 3’s right-hand side is nonzero.Condition:
, i.e.,Answer for no solution:
Case 2: Unique solution This requires
But the coefficient matrix has only 2 independent rows (the third row of
is dependent on the first two). So .Answer for unique solution: Never (impossible for any values of
)Case 3: Infinitely many solutions This requires
This happens when
andCondition:
Answer for infinitely many solutions:
Summary:
- No solution:
- Unique solution: Never possible
- Infinitely many solutions:
4.14. Solving a System Using REF (Tutorial 1, Example 1)
Solve using Row Echelon Form (REF):
Click to see the solution
Key Concept: REF is an intermediate form (pivots don’t need to be 1) that enables efficient back substitution.
- Augmented matrix:
- Row operations:
and : - Continue:
: - Back substitution:
- From Row 3:
- From Row 2:
- From Row 1:
- From Row 3:
Answer:
4.15. Solving a System Using RREF (Tutorial 1, Example 2)
Solve using Reduced Row Echelon Form (RREF):
Click to see the solution
Key Concept: RREF (where each pivot is 1 and is the only nonzero in its column) allows direct reading of solutions without back substitution.
- Augmented matrix:
- Row operations:
and : - Simplify Row 2 (divide by -5) and Row 3:
- Continue:
: - Simplify Row 3 (divide by -5):
where .
From the tutorial (given RREF):
Direct reading from RREF:
Answer:
4.16. Underdetermined System: 2 Equations, 4 Variables (Tutorial 1, Example 3)
Solve:
Click to see the solution
Key Concept: With 2 equations and 4 variables, there are
Augmented matrix:
Row operation:
:RREF:
(After
)From RREF:
, so
Free variables:
,
Answer:
4.17. Underdetermined System: 3 Equations, 5 Variables (Tutorial 1, Example 4)
Solve:
Click to see the solution
Key Concept: With 3 equations and 5 variables, there are at most 3 independent equations, leaving at least 2 free variables.
- Augmented matrix:
- Observe: Row 2 =
Row 1, so gives all zeros. - After row operations:
: - Rearrange to get RREF:
- From RREF:
- Free variables:
, ,
Answer:
4.18. Inconsistent System Detection (Tutorial 1, Example 5)
Solve (or determine if inconsistent):
Click to see the solution
Key Concept: When rows are proportional but the right-hand side is not proportional in the same way, the system is inconsistent.
- Augmented matrix:
- Row operations:
and : - Inconsistency detected: Row 2 represents
, which is impossible.
Answer: The system is inconsistent (no solution).
4.19. Solve Using REF (Tutorial 1, Example 6)
Solve using REF:
Click to see the solution
- Augmented matrix:
- Swap R1 and R2 for a leading 1:
- Row operations:
and : - Continue: Divide R2 by -1 (or keep as is) and perform
: - Back substitution:
Answer:
4.20. Intersection of Three Planes (Tutorial 1, Task 1)
Describe the intersection of the three planes (in four-dimensional space):
Part (a): Is it a line or a point or an empty set? Part (b): What is the intersection if the fourth plane
Click to see the solution
Key Concept: In higher dimensions, the intersection of hyperplanes forms lower-dimensional subspaces. The dimension of the solution space equals
(a) Intersection of three planes:
- From the equations:
- (1):
- (1):
- (2):
- (2):
- From (3):
- We have determined
and , while and satisfy . - Setting
as a free variable: . - General solution:
for
This represents a line in 4D space (parametrized by one variable).
(b) Adding the fourth plane
- From part (a), we had
. - If
: - Thus
. - The unique solution is:
This is a point in 4D space.
(c) Fourth equation that leads to no solution:
- From part (a), the solution set is
for . - Any equation that contradicts these values for all
will make the system inconsistent. - For example,
(different from the actual sum, which is always ).
Or simply:
Answer:
The intersection is a line in 4D.
With the fourth plane, the intersection is a point:
.A fourth equation causing no solution:
(or , or , etc.)
4.21. Find Another Solution Using Column Picture (Tutorial 1, Task 2)
When
Click to see the solution
Key Concept: If a system is singular (dependent rows), the solution is not unique. Any particular solution can be combined with homogeneous solutions to find other solutions.
Convert to linear system:
Check dependency: (1) + (2) = (3)? $(u + v + w) + (2u + 3w) = 3u + v + 4w = $ RHS:
✓So the three equations are dependent; the system is singular.
Find the null space (general homogeneous solution): Since the rows are dependent, we can express one as a combination of others. Notice:
, which means is a homogeneous solution.General solution: Particular solution:
Homogeneous solution:General solution:
forDifferent solution: Set
:Or set
: .
Answer: General solution:
4.22. Linear Dependence and Null Space (Tutorial 1, Task 3)
Show that the three column vectors lie in the same plane by expressing the third column as a combination of the first two. What are all solutions
Click to see the solution
Key Concept: Linear dependence means one vector can be written as a linear combination of the others. The null space consists of all solutions to
Express the third column as a combination of the first two: We seek
such that:Set up equations:
Solve:
- From equation 3:
- From equation 1:
- Verify with equation 2:
✓
- From equation 3:
Linear dependence relation:
This means
is in the null space.All solutions to the homogeneous system: Since the three vectors are linearly dependent (lie in a plane), the null space is 1-dimensional.
Basis for null space:
General solution:
for
Answer:
- The third column can be expressed as:
This shows the three columns lie in a 2D plane (linearly dependent).
- All solutions:
for , which includes (when ) and (when ).
4.23. Collinearity Condition (Tutorial 1, Task 4)
Under what condition on
Click to see the solution
Key Concept: Three points are collinear if they satisfy the same linear equation
Set up the line equation: For a line
, the three points must satisfy:- Point 1:
- Point 2:
- Point 3:
- Point 1:
Express in terms of
: (from Point 1) (from Point 2: )- From Point 3:
Collinearity condition:
Rearranging:
Or:
Answer: The three points are collinear if and only if:
4.24. Intersection of Two Planes: Find Points on the Line (Tutorial 1, Task 5)
Find a point with
Click to see the solution
Key Concept: The intersection of two planes is a line (in 3D, assuming the planes are not parallel). We can find specific points by setting one coordinate and solving for the others.
(a) Point with
- Substitute
into both plane equations: - Solve the system:
- Adding:
- From
:
- Adding:
- Point with
:
(b) Point with
- Substitute
into both plane equations: - Solve:
- Adding:
- From
:
- Adding:
- Point with
:
(c) Midpoint:
The midpoint between
Answer:
- Point with
: - Point with
: - Midpoint:
4.25. Immediate Solution from Column Picture (Tutorial 1, Task 6)
In the vector equation below, the third column (multiplying
Click to see the solution
Key Concept: If one of the column vectors equals the target vector
Observe: The third column vector is:
And the right-hand side is:
They are identical!
Immediate solution: If we set
, , and , then: ✓
Answer:
4.26. Elimination and Back Substitution with Missing Coefficient (Tutorial 1, Task 7)
Apply elimination (circle the pivots) and back-substitution to solve:
Click to see the solution
Write augmented matrix:
Row operations:
and :Pivots:
andContinue:
:Third pivot:
Back substitution:
- From Row 3:
- From Row 2:
- From Row 1:
- From Row 3:
Answer:
4.27. Parameter Analysis: Row Exchange and Singularity (Tutorial 1, Task 8)
For the system with parameter
Part (a): Which number
Click to see the solution
- Augmented matrix:
- First elimination:
:
(a) Row exchange occurs when:
The second pivot would be zero if
Answer for (a):
(b) Singularity (missing third pivot) occurs when:
We need
The third row represents
Answer for (b):
4.28. Constructing Systems with Row Exchanges (Tutorial 1, Task 9)
Part (a): Construct a 3×3 system that needs two row exchanges to reach triangular form and find a solution. Part (b): Construct a 3×3 system that needs a row exchange but breaks down later.
Click to see the solution
Key Concept: Systems requiring multiple row exchanges have zeros in critical pivot positions. Systems that break down are inconsistent.
(a) System requiring two row exchanges:
Example matrix:
- First exchange:
: - Second exchange:
: - Back substitution:
Answer for (a): Solution is
(b) System requiring row exchange but becoming inconsistent:
Example matrix:
Apply:
:Row exchange needed:
:Continue:
:The system is inconsistent (
).
Answer for (b): The system breaks down to the inconsistency